home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1993 Robert Davis
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of Version 2, or any later version, of
- * the GNU General Public License as published by the Free Software
- * Foundation.
- */
-
-
- /* $Id: UserTicsPane.h,v 1.4 1993/05/04 16:23:13 davis Exp $ */
-
- #import "Pane.h"
-
- @class DoubleValueSortedList, EditMatrix;
-
- @interface UserTicsPane:Pane
- {
- DoubleValueSortedList *ticsList[3];
- EditMatrix *userMatrix;
- id userScrollView;
- id userTitleForm;
- id userValueForm;
- id addTicButton;
- id deleteTicButton;
- id modifyTicButton;
- }
-
- - init;
- - (BOOL)updateStatus:aStatus doc:aDoc;
-
- - addTic:sender;
- - deleteTics:sender;
- - modifyTic:sender;
- - selectTic:sender;
-
- @end
-